From 2c1147f7841a0f2fdb0e3d12b62f11ce07a5673f Mon Sep 17 00:00:00 2001 From: "Carol (Nichols || Goulding)" Date: Fri, 13 May 2016 12:25:37 -0400 Subject: [PATCH] Correct `Fresh` to `Compiling` since we aren't running with -v I only see `Fresh` if I use `cargo run -v`, but this example uses `cargo run`. Someone following along might not see either of these if they just built in the previous step, though, so clarify that you'll only see that if you have made changes. --- src/doc/guide.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/doc/guide.md b/src/doc/guide.md index 3b97fc108..4aba5ad6b 100644 --- a/src/doc/guide.md +++ b/src/doc/guide.md @@ -83,11 +83,13 @@ $ ./target/debug/hello_world Hello, world! ``` -We can also use `cargo run` to compile and then run it, all in one step: +We can also use `cargo run` to compile and then run it, all in one step (You +won't see the `Compiling` line if you have not made any changes since you last +compiled):
$ cargo run
      Fresh hello_world v0.1.0 (file:///path/to/project/hello_world)
+class="s1">   Compiling hello_world v0.1.0 (file:///path/to/project/hello_world)
    Running `target/debug/hello_world`
 Hello, world!
-- 2.30.2